home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue62
/
outlook
/
OutlookHelper
/
OutlookHelper.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2000-08-05
|
290 b
|
16 lines
program OutlookHelper;
uses
Forms,
MainForm in 'MainForm.pas' {HelperMainForm},
PipeServer in 'PipeServer.pas',
Outlook in 'Outlook.pas';
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(THelperMainForm, HelperMainForm);
Application.Run;
end.